home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Programming / gcc-2.95.3-3 / info / gcc.info-5 < prev    next >
Encoding:
GNU Info File  |  2001-07-15  |  46.8 KB  |  1,103 lines

  1. This is Info file gcc.info, produced by Makeinfo version 1.68 from the
  2. input file ./gcc.texi.
  3.  
  4. INFO-DIR-SECTION Programming
  5. START-INFO-DIR-ENTRY
  6. * gcc: (gcc).                  The GNU Compiler Collection.
  7. END-INFO-DIR-ENTRY
  8.    This file documents the use and the internals of the GNU compiler.
  9.  
  10.    Published by the Free Software Foundation 59 Temple Place - Suite 330
  11. Boston, MA 02111-1307 USA
  12.  
  13.    Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
  14. 1999, 2000 Free Software Foundation, Inc.
  15.  
  16.    Permission is granted to make and distribute verbatim copies of this
  17. manual provided the copyright notice and this permission notice are
  18. preserved on all copies.
  19.  
  20.    Permission is granted to copy and distribute modified versions of
  21. this manual under the conditions for verbatim copying, provided also
  22. that the sections entitled "GNU General Public License" and "Funding
  23. for Free Software" are included exactly as in the original, and
  24. provided that the entire resulting derived work is distributed under
  25. the terms of a permission notice identical to this one.
  26.  
  27.    Permission is granted to copy and distribute translations of this
  28. manual into another language, under the above conditions for modified
  29. versions, except that the sections entitled "GNU General Public
  30. License" and "Funding for Free Software", and this permission notice,
  31. may be included in translations approved by the Free Software Foundation
  32. instead of in the original English.
  33.  
  34. 
  35. File: gcc.info,  Node: M88K Options,  Next: RS/6000 and PowerPC Options,  Prev: M32R/D Options,  Up: Submodel Options
  36.  
  37. M88K Options
  38. ------------
  39.  
  40.    These `-m' options are defined for Motorola 88k architectures:
  41.  
  42. `-m88000'
  43.      Generate code that works well on both the m88100 and the m88110.
  44.  
  45. `-m88100'
  46.      Generate code that works best for the m88100, but that also runs
  47.      on the m88110.
  48.  
  49. `-m88110'
  50.      Generate code that works best for the m88110, and may not run on
  51.      the m88100.
  52.  
  53. `-mbig-pic'
  54.      Obsolete option to be removed from the next revision.  Use `-fPIC'.
  55.  
  56. `-midentify-revision'
  57.      Include an `ident' directive in the assembler output recording the
  58.      source file name, compiler name and version, timestamp, and
  59.      compilation flags used.
  60.  
  61. `-mno-underscores'
  62.      In assembler output, emit symbol names without adding an underscore
  63.      character at the beginning of each name.  The default is to use an
  64.      underscore as prefix on each name.
  65.  
  66. `-mocs-debug-info'
  67. `-mno-ocs-debug-info'
  68.      Include (or omit) additional debugging information (about
  69.      registers used in each stack frame) as specified in the 88open
  70.      Object Compatibility Standard, "OCS".  This extra information
  71.      allows debugging of code that has had the frame pointer
  72.      eliminated.  The default for DG/UX, SVr4, and Delta 88 SVr3.2 is
  73.      to include this information; other 88k configurations omit this
  74.      information by default.
  75.  
  76. `-mocs-frame-position'
  77.      When emitting COFF debugging information for automatic variables
  78.      and parameters stored on the stack, use the offset from the
  79.      canonical frame address, which is the stack pointer (register 31)
  80.      on entry to the function.  The DG/UX, SVr4, Delta88 SVr3.2, and
  81.      BCS configurations use `-mocs-frame-position'; other 88k
  82.      configurations have the default `-mno-ocs-frame-position'.
  83.  
  84. `-mno-ocs-frame-position'
  85.      When emitting COFF debugging information for automatic variables
  86.      and parameters stored on the stack, use the offset from the frame
  87.      pointer register (register 30).  When this option is in effect,
  88.      the frame pointer is not eliminated when debugging information is
  89.      selected by the -g switch.
  90.  
  91. `-moptimize-arg-area'
  92. `-mno-optimize-arg-area'
  93.      Control how function arguments are stored in stack frames.
  94.      `-moptimize-arg-area' saves space by optimizing them, but this
  95.      conflicts with the 88open specifications.  The opposite
  96.      alternative, `-mno-optimize-arg-area', agrees with 88open
  97.      standards.  By default GCC does not optimize the argument area.
  98.  
  99. `-mshort-data-NUM'
  100.      Generate smaller data references by making them relative to `r0',
  101.      which allows loading a value using a single instruction (rather
  102.      than the usual two).  You control which data references are
  103.      affected by specifying NUM with this option.  For example, if you
  104.      specify `-mshort-data-512', then the data references affected are
  105.      those involving displacements of less than 512 bytes.
  106.      `-mshort-data-NUM' is not effective for NUM greater than 64k.
  107.  
  108. `-mserialize-volatile'
  109. `-mno-serialize-volatile'
  110.      Do, or don't, generate code to guarantee sequential consistency of
  111.      volatile memory references.  By default, consistency is guaranteed.
  112.  
  113.      The order of memory references made by the MC88110 processor does
  114.      not always match the order of the instructions requesting those
  115.      references.  In particular, a load instruction may execute before
  116.      a preceding store instruction.  Such reordering violates
  117.      sequential consistency of volatile memory references, when there
  118.      are multiple processors.   When consistency must be guaranteed,
  119.      GNU C generates special instructions, as needed, to force
  120.      execution in the proper order.
  121.  
  122.      The MC88100 processor does not reorder memory references and so
  123.      always provides sequential consistency.  However, by default, GNU
  124.      C generates the special instructions to guarantee consistency even
  125.      when you use `-m88100', so that the code may be run on an MC88110
  126.      processor.  If you intend to run your code only on the MC88100
  127.      processor, you may use `-mno-serialize-volatile'.
  128.  
  129.      The extra code generated to guarantee consistency may affect the
  130.      performance of your application.  If you know that you can safely
  131.      forgo this guarantee, you may use `-mno-serialize-volatile'.
  132.  
  133. `-msvr4'
  134. `-msvr3'
  135.      Turn on (`-msvr4') or off (`-msvr3') compiler extensions related
  136.      to System V release 4 (SVr4).  This controls the following:
  137.  
  138.        1. Which variant of the assembler syntax to emit.
  139.  
  140.        2. `-msvr4' makes the C preprocessor recognize `#pragma weak'
  141.           that is used on System V release 4.
  142.  
  143.        3. `-msvr4' makes GCC issue additional declaration directives
  144.           used in SVr4.
  145.  
  146.      `-msvr4' is the default for the m88k-motorola-sysv4 and
  147.      m88k-dg-dgux m88k configurations. `-msvr3' is the default for all
  148.      other m88k configurations.
  149.  
  150. `-mversion-03.00'
  151.      This option is obsolete, and is ignored.
  152.  
  153. `-mno-check-zero-division'
  154. `-mcheck-zero-division'
  155.      Do, or don't, generate code to guarantee that integer division by
  156.      zero will be detected.  By default, detection is guaranteed.
  157.  
  158.      Some models of the MC88100 processor fail to trap upon integer
  159.      division by zero under certain conditions.  By default, when
  160.      compiling code that might be run on such a processor, GNU C
  161.      generates code that explicitly checks for zero-valued divisors and
  162.      traps with exception number 503 when one is detected.  Use of
  163.      mno-check-zero-division suppresses such checking for code
  164.      generated to run on an MC88100 processor.
  165.  
  166.      GNU C assumes that the MC88110 processor correctly detects all
  167.      instances of integer division by zero.  When `-m88110' is
  168.      specified, both `-mcheck-zero-division' and
  169.      `-mno-check-zero-division' are ignored, and no explicit checks for
  170.      zero-valued divisors are generated.
  171.  
  172. `-muse-div-instruction'
  173.      Use the div instruction for signed integer division on the MC88100
  174.      processor.  By default, the div instruction is not used.
  175.  
  176.      On the MC88100 processor the signed integer division instruction
  177.      div) traps to the operating system on a negative operand.  The
  178.      operating system transparently completes the operation, but at a
  179.      large cost in execution time.  By default, when compiling code
  180.      that might be run on an MC88100 processor, GNU C emulates signed
  181.      integer division using the unsigned integer division instruction
  182.      divu), thereby avoiding the large penalty of a trap to the
  183.      operating system.  Such emulation has its own, smaller, execution
  184.      cost in both time and space.  To the extent that your code's
  185.      important signed integer division operations are performed on two
  186.      nonnegative operands, it may be desirable to use the div
  187.      instruction directly.
  188.  
  189.      On the MC88110 processor the div instruction (also known as the
  190.      divs instruction) processes negative operands without trapping to
  191.      the operating system.  When `-m88110' is specified,
  192.      `-muse-div-instruction' is ignored, and the div instruction is used
  193.      for signed integer division.
  194.  
  195.      Note that the result of dividing INT_MIN by -1 is undefined.  In
  196.      particular, the behavior of such a division with and without
  197.      `-muse-div-instruction'  may differ.
  198.  
  199. `-mtrap-large-shift'
  200. `-mhandle-large-shift'
  201.      Include code to detect bit-shifts of more than 31 bits;
  202.      respectively, trap such shifts or emit code to handle them
  203.      properly.  By default GCC makes no special provision for large bit
  204.      shifts.
  205.  
  206. `-mwarn-passed-structs'
  207.      Warn when a function passes a struct as an argument or result.
  208.      Structure-passing conventions have changed during the evolution of
  209.      the C language, and are often the source of portability problems.
  210.      By default, GCC issues no such warning.
  211.  
  212. 
  213. File: gcc.info,  Node: RS/6000 and PowerPC Options,  Next: RT Options,  Prev: M88K Options,  Up: Submodel Options
  214.  
  215. IBM RS/6000 and PowerPC Options
  216. -------------------------------
  217.  
  218.    These `-m' options are defined for the IBM RS/6000 and PowerPC:
  219. `-mpower'
  220. `-mno-power'
  221. `-mpower2'
  222. `-mno-power2'
  223. `-mpowerpc'
  224. `-mno-powerpc'
  225. `-mpowerpc-gpopt'
  226. `-mno-powerpc-gpopt'
  227. `-mpowerpc-gfxopt'
  228. `-mno-powerpc-gfxopt'
  229. `-mpowerpc64'
  230. `-mno-powerpc64'
  231.      GCC supports two related instruction set architectures for the
  232.      RS/6000 and PowerPC.  The "POWER" instruction set are those
  233.      instructions supported by the `rios' chip set used in the original
  234.      RS/6000 systems and the "PowerPC" instruction set is the
  235.      architecture of the Motorola MPC5xx, MPC6xx, MPC8xx
  236.      microprocessors, and the IBM 4xx microprocessors.
  237.  
  238.      Neither architecture is a subset of the other.  However there is a
  239.      large common subset of instructions supported by both.  An MQ
  240.      register is included in processors supporting the POWER
  241.      architecture.
  242.  
  243.      You use these options to specify which instructions are available
  244.      on the processor you are using.  The default value of these
  245.      options is determined when configuring GCC.  Specifying the
  246.      `-mcpu=CPU_TYPE' overrides the specification of these options.  We
  247.      recommend you use the `-mcpu=CPU_TYPE' option rather than the
  248.      options listed above.
  249.  
  250.      The `-mpower' option allows GCC to generate instructions that are
  251.      found only in the POWER architecture and to use the MQ register.
  252.      Specifying `-mpower2' implies `-power' and also allows GCC to
  253.      generate instructions that are present in the POWER2 architecture
  254.      but not the original POWER architecture.
  255.  
  256.      The `-mpowerpc' option allows GCC to generate instructions that
  257.      are found only in the 32-bit subset of the PowerPC architecture.
  258.      Specifying `-mpowerpc-gpopt' implies `-mpowerpc' and also allows
  259.      GCC to use the optional PowerPC architecture instructions in the
  260.      General Purpose group, including floating-point square root.
  261.      Specifying `-mpowerpc-gfxopt' implies `-mpowerpc' and also allows
  262.      GCC to use the optional PowerPC architecture instructions in the
  263.      Graphics group, including floating-point select.
  264.  
  265.      The `-mpowerpc64' option allows GCC to generate the additional
  266.      64-bit instructions that are found in the full PowerPC64
  267.      architecture and to treat GPRs as 64-bit, doubleword quantities.
  268.      GCC defaults to `-mno-powerpc64'.
  269.  
  270.      If you specify both `-mno-power' and `-mno-powerpc', GCC will use
  271.      only the instructions in the common subset of both architectures
  272.      plus some special AIX common-mode calls, and will not use the MQ
  273.      register.  Specifying both `-mpower' and `-mpowerpc' permits GCC
  274.      to use any instruction from either architecture and to allow use
  275.      of the MQ register; specify this for the Motorola MPC601.
  276.  
  277. `-mnew-mnemonics'
  278. `-mold-mnemonics'
  279.      Select which mnemonics to use in the generated assembler code.
  280.      `-mnew-mnemonics' requests output that uses the assembler mnemonics
  281.      defined for the PowerPC architecture, while `-mold-mnemonics'
  282.      requests the assembler mnemonics defined for the POWER
  283.      architecture.  Instructions defined in only one architecture have
  284.      only one mnemonic; GCC uses that mnemonic irrespective of which of
  285.      these options is specified.
  286.  
  287.      GCC defaults to the mnemonics appropriate for the architecture in
  288.      use.  Specifying `-mcpu=CPU_TYPE' sometimes overrides the value of
  289.      these option.  Unless you are building a cross-compiler, you
  290.      should normally not specify either `-mnew-mnemonics' or
  291.      `-mold-mnemonics', but should instead accept the default.
  292.  
  293. `-mcpu=CPU_TYPE'
  294.      Set architecture type, register usage, choice of mnemonics, and
  295.      instruction scheduling parameters for machine type CPU_TYPE.
  296.      Supported values for CPU_TYPE are `rs6000', `rios1', `rios2',
  297.      `rsc', `601', `602', `603', `603e', `604', `604e', `620', `740',
  298.      `750', `power', `power2', `powerpc', `403', `505', `801', `821',
  299.      `823', and `860' and `common'.  `-mcpu=power', `-mcpu=power2', and
  300.      `-mcpu=powerpc' specify generic POWER, POWER2 and pure PowerPC
  301.      (i.e., not MPC601) architecture machine types, with an appropriate,
  302.      generic processor model assumed for scheduling purposes.
  303.  
  304.      Specifying any of the following options: `-mcpu=rios1',
  305.      `-mcpu=rios2', `-mcpu=rsc', `-mcpu=power', or `-mcpu=power2'
  306.      enables the `-mpower' option and disables the `-mpowerpc' option;
  307.      `-mcpu=601' enables both the `-mpower' and `-mpowerpc' options.
  308.      All of `-mcpu=602', `-mcpu=603', `-mcpu=603e', `-mcpu=604',
  309.      `-mcpu=620', enable the `-mpowerpc' option and disable the
  310.      `-mpower' option.  Exactly similarly, all of `-mcpu=403',
  311.      `-mcpu=505', `-mcpu=821', `-mcpu=860' and `-mcpu=powerpc' enable
  312.      the `-mpowerpc' option and disable the `-mpower' option.
  313.      `-mcpu=common' disables both the `-mpower' and `-mpowerpc' options.
  314.  
  315.      AIX versions 4 or greater selects `-mcpu=common' by default, so
  316.      that code will operate on all members of the RS/6000 and PowerPC
  317.      families.  In that case, GCC will use only the instructions in the
  318.      common subset of both architectures plus some special AIX
  319.      common-mode calls, and will not use the MQ register.  GCC assumes
  320.      a generic processor model for scheduling purposes.
  321.  
  322.      Specifying any of the options `-mcpu=rios1', `-mcpu=rios2',
  323.      `-mcpu=rsc', `-mcpu=power', or `-mcpu=power2' also disables the
  324.      `new-mnemonics' option.  Specifying `-mcpu=601', `-mcpu=602',
  325.      `-mcpu=603', `-mcpu=603e', `-mcpu=604', `620', `403', or
  326.      `-mcpu=powerpc' also enables the `new-mnemonics' option.
  327.  
  328.      Specifying `-mcpu=403', `-mcpu=821', or `-mcpu=860' also enables
  329.      the `-msoft-float' option.
  330.  
  331. `-mtune=CPU_TYPE'
  332.      Set the instruction scheduling parameters for machine type
  333.      CPU_TYPE, but do not set the architecture type, register usage,
  334.      choice of mnemonics like `-mcpu='CPU_TYPE would.  The same values
  335.      for CPU_TYPE are used for `-mtune='CPU_TYPE as for
  336.      `-mcpu='CPU_TYPE.  The `-mtune='CPU_TYPE option overrides the
  337.      `-mcpu='CPU_TYPE option in terms of instruction scheduling
  338.      parameters.
  339.  
  340. `-mfull-toc'
  341. `-mno-fp-in-toc'
  342. `-mno-sum-in-toc'
  343. `-mminimal-toc'
  344.      Modify generation of the TOC (Table Of Contents), which is created
  345.      for every executable file.  The `-mfull-toc' option is selected by
  346.      default.  In that case, GCC will allocate at least one TOC entry
  347.      for each unique non-automatic variable reference in your program.
  348.      GCC will also place floating-point constants in the TOC.  However,
  349.      only 16,384 entries are available in the TOC.
  350.  
  351.      If you receive a linker error message that saying you have
  352.      overflowed the available TOC space, you can reduce the amount of
  353.      TOC space used with the `-mno-fp-in-toc' and `-mno-sum-in-toc'
  354.      options.  `-mno-fp-in-toc' prevents GCC from putting floating-point
  355.      constants in the TOC and `-mno-sum-in-toc' forces GCC to generate
  356.      code to calculate the sum of an address and a constant at run-time
  357.      instead of putting that sum into the TOC.  You may specify one or
  358.      both of these options.  Each causes GCC to produce very slightly
  359.      slower and larger code at the expense of conserving TOC space.
  360.  
  361.      If you still run out of space in the TOC even when you specify
  362.      both of these options, specify `-mminimal-toc' instead.  This
  363.      option causes GCC to make only one TOC entry for every file.  When
  364.      you specify this option, GCC will produce code that is slower and
  365.      larger but which uses extremely little TOC space.  You may wish to
  366.      use this option only on files that contain less frequently
  367.      executed code.
  368.  
  369. `-maix64'
  370. `-maix32'
  371.      Enable AIX 64-bit ABI and calling convention: 64-bit pointers,
  372.      64-bit `long' type, and the infrastructure needed to support them.
  373.      Specifying `-maix64' implies `-mpowerpc64' and `-mpowerpc', while
  374.      `-maix32' disables the 64-bit ABI and implies `-mno-powerpc64'.
  375.      GCC defaults to `-maix32'.
  376.  
  377. `-mxl-call'
  378. `-mno-xl-call'
  379.      On AIX, pass floating-point arguments to prototyped functions
  380.      beyond the register save area (RSA) on the stack in addition to
  381.      argument FPRs.  The AIX calling convention was extended but not
  382.      initially documented to handle an obscure K&R C case of calling a
  383.      function that takes the address of its arguments with fewer
  384.      arguments than declared.  AIX XL compilers access floating point
  385.      arguments which do not fit in the RSA from the stack when a
  386.      subroutine is compiled without optimization.  Because always
  387.      storing floating-point arguments on the stack is inefficient and
  388.      rarely needed, this option is not enabled by default and only is
  389.      necessary when calling subroutines compiled by AIX XL compilers
  390.      without optimization.
  391.  
  392. `-mthreads'
  393.      Support "AIX Threads".  Link an application written to use
  394.      "pthreads" with special libraries and startup code to enable the
  395.      application to run.
  396.  
  397. `-mpe'
  398.      Support "IBM RS/6000 SP" "Parallel Environment" (PE).  Link an
  399.      application written to use message passing with special startup
  400.      code to enable the application to run.  The system must have PE
  401.      installed in the standard location (`/usr/lpp/ppe.poe/'), or the
  402.      `specs' file must be overridden with the `-specs=' option to
  403.      specify the appropriate directory location.  The Parallel
  404.      Environment does not support threads, so the `-mpe' option and the
  405.      `-mthreads' option are incompatible.
  406.  
  407. `-msoft-float'
  408. `-mhard-float'
  409.      Generate code that does not use (uses) the floating-point register
  410.      set.  Software floating point emulation is provided if you use the
  411.      `-msoft-float' option, and pass the option to GCC when linking.
  412.  
  413. `-mmultiple'
  414. `-mno-multiple'
  415.      Generate code that uses (does not use) the load multiple word
  416.      instructions and the store multiple word instructions.  These
  417.      instructions are generated by default on POWER systems, and not
  418.      generated on PowerPC systems.  Do not use `-mmultiple' on little
  419.      endian PowerPC systems, since those instructions do not work when
  420.      the processor is in little endian mode.  The exceptions are PPC740
  421.      and PPC750 which permit the instructions usage in little endian
  422.      mode.
  423.  
  424. `-mstring'
  425. `-mno-string'
  426.      Generate code that uses (does not use) the load string instructions
  427.      and the store string word instructions to save multiple registers
  428.      and do small block moves.  These instructions are generated by
  429.      default on POWER systems, and not generated on PowerPC systems.
  430.      Do not use `-mstring' on little endian PowerPC systems, since those
  431.      instructions do not work when the processor is in little endian
  432.      mode.  The exceptions are PPC740 and PPC750 which permit the
  433.      instructions usage in little endian mode.
  434.  
  435. `-mupdate'
  436. `-mno-update'
  437.      Generate code that uses (does not use) the load or store
  438.      instructions that update the base register to the address of the
  439.      calculated memory location.  These instructions are generated by
  440.      default.  If you use `-mno-update', there is a small window
  441.      between the time that the stack pointer is updated and the address
  442.      of the previous frame is stored, which means code that walks the
  443.      stack frame across interrupts or signals may get corrupted data.
  444.  
  445. `-mfused-madd'
  446. `-mno-fused-madd'
  447.      Generate code that uses (does not use) the floating point multiply
  448.      and accumulate instructions.  These instructions are generated by
  449.      default if hardware floating is used.
  450.  
  451. `-mno-bit-align'
  452. `-mbit-align'
  453.      On System V.4 and embedded PowerPC systems do not (do) force
  454.      structures and unions that contain bit fields to be aligned to the
  455.      base type of the bit field.
  456.  
  457.      For example, by default a structure containing nothing but 8
  458.      `unsigned' bitfields of length 1 would be aligned to a 4 byte
  459.      boundary and have a size of 4 bytes.  By using `-mno-bit-align',
  460.      the structure would be aligned to a 1 byte boundary and be one
  461.      byte in size.
  462.  
  463. `-mno-strict-align'
  464. `-mstrict-align'
  465.      On System V.4 and embedded PowerPC systems do not (do) assume that
  466.      unaligned memory references will be handled by the system.
  467.  
  468. `-mrelocatable'
  469. `-mno-relocatable'
  470.      On embedded PowerPC systems generate code that allows (does not
  471.      allow) the program to be relocated to a different address at
  472.      runtime.  If you use `-mrelocatable' on any module, all objects
  473.      linked together must be compiled with `-mrelocatable' or
  474.      `-mrelocatable-lib'.
  475.  
  476. `-mrelocatable-lib'
  477. `-mno-relocatable-lib'
  478.      On embedded PowerPC systems generate code that allows (does not
  479.      allow) the program to be relocated to a different address at
  480.      runtime.  Modules compiled with `-mrelocatable-lib' can be linked
  481.      with either modules compiled without `-mrelocatable' and
  482.      `-mrelocatable-lib' or with modules compiled with the
  483.      `-mrelocatable' options.
  484.  
  485. `-mno-toc'
  486. `-mtoc'
  487.      On System V.4 and embedded PowerPC systems do not (do) assume that
  488.      register 2 contains a pointer to a global area pointing to the
  489.      addresses used in the program.
  490.  
  491. `-mlittle'
  492. `-mlittle-endian'
  493.      On System V.4 and embedded PowerPC systems compile code for the
  494.      processor in little endian mode.  The `-mlittle-endian' option is
  495.      the same as `-mlittle'.
  496.  
  497. `-mbig'
  498. `-mbig-endian'
  499.      On System V.4 and embedded PowerPC systems compile code for the
  500.      processor in big endian mode.  The `-mbig-endian' option is the
  501.      same as `-mbig'.
  502.  
  503. `-mcall-sysv'
  504.      On System V.4 and embedded PowerPC systems compile code using
  505.      calling conventions that adheres to the March 1995 draft of the
  506.      System V Application Binary Interface, PowerPC processor
  507.      supplement.  This is the default unless you configured GCC using
  508.      `powerpc-*-eabiaix'.
  509.  
  510. `-mcall-sysv-eabi'
  511.      Specify both `-mcall-sysv' and `-meabi' options.
  512.  
  513. `-mcall-sysv-noeabi'
  514.      Specify both `-mcall-sysv' and `-mno-eabi' options.
  515.  
  516. `-mcall-aix'
  517.      On System V.4 and embedded PowerPC systems compile code using
  518.      calling conventions that are similar to those used on AIX.  This
  519.      is the default if you configured GCC using `powerpc-*-eabiaix'.
  520.  
  521. `-mcall-solaris'
  522.      On System V.4 and embedded PowerPC systems compile code for the
  523.      Solaris operating system.
  524.  
  525. `-mcall-linux'
  526.      On System V.4 and embedded PowerPC systems compile code for the
  527.      Linux-based GNU system.
  528.  
  529. `-mprototype'
  530. `-mno-prototype'
  531.      On System V.4 and embedded PowerPC systems assume that all calls to
  532.      variable argument functions are properly prototyped.  Otherwise,
  533.      the compiler must insert an instruction before every non
  534.      prototyped call to set or clear bit 6 of the condition code
  535.      register (CR) to indicate whether floating point values were
  536.      passed in the floating point registers in case the function takes
  537.      a variable arguments.  With `-mprototype', only calls to
  538.      prototyped variable argument functions will set or clear the bit.
  539.  
  540. `-msim'
  541.      On embedded PowerPC systems, assume that the startup module is
  542.      called `sim-crt0.o' and that the standard C libraries are
  543.      `libsim.a' and `libc.a'.  This is the default for
  544.      `powerpc-*-eabisim'.  configurations.
  545.  
  546. `-mmvme'
  547.      On embedded PowerPC systems, assume that the startup module is
  548.      called `crt0.o' and the standard C libraries are `libmvme.a' and
  549.      `libc.a'.
  550.  
  551. `-mads'
  552.      On embedded PowerPC systems, assume that the startup module is
  553.      called `crt0.o' and the standard C libraries are `libads.a' and
  554.      `libc.a'.
  555.  
  556. `-myellowknife'
  557.      On embedded PowerPC systems, assume that the startup module is
  558.      called `crt0.o' and the standard C libraries are `libyk.a' and
  559.      `libc.a'.
  560.  
  561. `-memb'
  562.      On embedded PowerPC systems, set the PPC_EMB bit in the ELF flags
  563.      header to indicate that `eabi' extended relocations are used.
  564.  
  565. `-meabi'
  566. `-mno-eabi'
  567.      On System V.4 and embedded PowerPC systems do (do not) adhere to
  568.      the Embedded Applications Binary Interface (eabi) which is a set of
  569.      modifications to the System V.4 specifications.  Selecting `-meabi'
  570.      means that the stack is aligned to an 8 byte boundary, a function
  571.      `__eabi' is called to from `main' to set up the eabi environment,
  572.      and the `-msdata' option can use both `r2' and `r13' to point to
  573.      two separate small data areas.  Selecting `-mno-eabi' means that
  574.      the stack is aligned to a 16 byte boundary, do not call an
  575.      initialization function from `main', and the `-msdata' option will
  576.      only use `r13' to point to a single small data area.  The `-meabi'
  577.      option is on by default if you configured GCC using one of the
  578.      `powerpc*-*-eabi*' options.
  579.  
  580. `-msdata=eabi'
  581.      On System V.4 and embedded PowerPC systems, put small initialized
  582.      `const' global and static data in the `.sdata2' section, which is
  583.      pointed to by register `r2'.  Put small initialized non-`const'
  584.      global and static data in the `.sdata' section, which is pointed
  585.      to by register `r13'.  Put small uninitialized global and static
  586.      data in the `.sbss' section, which is adjacent to the `.sdata'
  587.      section.  The `-msdata=eabi' option is incompatible with the
  588.      `-mrelocatable' option.  The `-msdata=eabi' option also sets the
  589.      `-memb' option.
  590.  
  591. `-msdata=sysv'
  592.      On System V.4 and embedded PowerPC systems, put small global and
  593.      static data in the `.sdata' section, which is pointed to by
  594.      register `r13'.  Put small uninitialized global and static data in
  595.      the `.sbss' section, which is adjacent to the `.sdata' section.
  596.      The `-msdata=sysv' option is incompatible with the `-mrelocatable'
  597.      option.
  598.  
  599. `-msdata=default'
  600. `-msdata'
  601.      On System V.4 and embedded PowerPC systems, if `-meabi' is used,
  602.      compile code the same as `-msdata=eabi', otherwise compile code the
  603.      same as `-msdata=sysv'.
  604.  
  605. `-msdata-data'
  606.      On System V.4 and embedded PowerPC systems, put small global and
  607.      static data in the `.sdata' section.  Put small uninitialized
  608.      global and static data in the `.sbss' section.  Do not use
  609.      register `r13' to address small data however.  This is the default
  610.      behavior unless other `-msdata' options are used.
  611.  
  612. `-msdata=none'
  613. `-mno-sdata'
  614.      On embedded PowerPC systems, put all initialized global and static
  615.      data in the `.data' section, and all uninitialized data in the
  616.      `.bss' section.
  617.  
  618. `-G NUM'
  619.      On embedded PowerPC systems, put global and static items less than
  620.      or equal to NUM bytes into the small data or bss sections instead
  621.      of the normal data or bss section.  By default, NUM is 8.  The `-G
  622.      NUM' switch is also passed to the linker.  All modules should be
  623.      compiled with the same `-G NUM' value.
  624.  
  625. `-mregnames'
  626. `-mno-regnames'
  627.      On System V.4 and embedded PowerPC systems do (do not) emit
  628.      register names in the assembly language output using symbolic
  629.      forms.
  630.  
  631. 
  632. File: gcc.info,  Node: RT Options,  Next: MIPS Options,  Prev: RS/6000 and PowerPC Options,  Up: Submodel Options
  633.  
  634. IBM RT Options
  635. --------------
  636.  
  637.    These `-m' options are defined for the IBM RT PC:
  638.  
  639. `-min-line-mul'
  640.      Use an in-line code sequence for integer multiplies.  This is the
  641.      default.
  642.  
  643. `-mcall-lib-mul'
  644.      Call `lmul$$' for integer multiples.
  645.  
  646. `-mfull-fp-blocks'
  647.      Generate full-size floating point data blocks, including the
  648.      minimum amount of scratch space recommended by IBM.  This is the
  649.      default.
  650.  
  651. `-mminimum-fp-blocks'
  652.      Do not include extra scratch space in floating point data blocks.
  653.      This results in smaller code, but slower execution, since scratch
  654.      space must be allocated dynamically.
  655.  
  656. `-mfp-arg-in-fpregs'
  657.      Use a calling sequence incompatible with the IBM calling
  658.      convention in which floating point arguments are passed in
  659.      floating point registers.  Note that `varargs.h' and `stdargs.h'
  660.      will not work with floating point operands if this option is
  661.      specified.
  662.  
  663. `-mfp-arg-in-gregs'
  664.      Use the normal calling convention for floating point arguments.
  665.      This is the default.
  666.  
  667. `-mhc-struct-return'
  668.      Return structures of more than one word in memory, rather than in a
  669.      register.  This provides compatibility with the MetaWare HighC (hc)
  670.      compiler.  Use the option `-fpcc-struct-return' for compatibility
  671.      with the Portable C Compiler (pcc).
  672.  
  673. `-mnohc-struct-return'
  674.      Return some structures of more than one word in registers, when
  675.      convenient.  This is the default.  For compatibility with the
  676.      IBM-supplied compilers, use the option `-fpcc-struct-return' or the
  677.      option `-mhc-struct-return'.
  678.  
  679. 
  680. File: gcc.info,  Node: MIPS Options,  Next: i386 Options,  Prev: RT Options,  Up: Submodel Options
  681.  
  682. MIPS Options
  683. ------------
  684.  
  685.    These `-m' options are defined for the MIPS family of computers:
  686.  
  687. `-mcpu=CPU TYPE'
  688.      Assume the defaults for the machine type CPU TYPE when scheduling
  689.      instructions.  The choices for CPU TYPE are `r2000', `r3000',
  690.      `r3900', `r4000', `r4100', `r4300', `r4400', `r4600', `r4650',
  691.      `r5000', `r6000', `r8000', and `orion'.  Additionally, the
  692.      `r2000', `r3000', `r4000', `r5000', and `r6000' can be abbreviated
  693.      as `r2k' (or `r2K'), `r3k', etc.  While picking a specific CPU
  694.      TYPE will schedule things appropriately for that particular chip,
  695.      the compiler will not generate any code that does not meet level 1
  696.      of the MIPS ISA (instruction set architecture) without a `-mipsX'
  697.      or `-mabi' switch being used.
  698.  
  699. `-mips1'
  700.      Issue instructions from level 1 of the MIPS ISA.  This is the
  701.      default.  `r3000' is the default CPU TYPE at this ISA level.
  702.  
  703. `-mips2'
  704.      Issue instructions from level 2 of the MIPS ISA (branch likely,
  705.      square root instructions).  `r6000' is the default CPU TYPE at this
  706.      ISA level.
  707.  
  708. `-mips3'
  709.      Issue instructions from level 3 of the MIPS ISA (64 bit
  710.      instructions).  `r4000' is the default CPU TYPE at this ISA level.
  711.  
  712. `-mips4'
  713.      Issue instructions from level 4 of the MIPS ISA (conditional move,
  714.      prefetch, enhanced FPU instructions).  `r8000' is the default CPU
  715.      TYPE at this ISA level.
  716.  
  717. `-mfp32'
  718.      Assume that 32 32-bit floating point registers are available.
  719.      This is the default.
  720.  
  721. `-mfp64'
  722.      Assume that 32 64-bit floating point registers are available.
  723.      This is the default when the `-mips3' option is used.
  724.  
  725. `-mgp32'
  726.      Assume that 32 32-bit general purpose registers are available.
  727.      This is the default.
  728.  
  729. `-mgp64'
  730.      Assume that 32 64-bit general purpose registers are available.
  731.      This is the default when the `-mips3' option is used.
  732.  
  733. `-mint64'
  734.      Force int and long types to be 64 bits wide.  See `-mlong32' for an
  735.      explanation of the default, and the width of pointers.
  736.  
  737. `-mlong64'
  738.      Force long types to be 64 bits wide.  See `-mlong32' for an
  739.      explanation of the default, and the width of pointers.
  740.  
  741. `-mlong32'
  742.      Force long, int, and pointer types to be 32 bits wide.
  743.  
  744.      If none of `-mlong32', `-mlong64', or `-mint64' are set, the size
  745.      of ints, longs, and pointers depends on the ABI and ISA choosen.
  746.      For `-mabi=32', and `-mabi=n32', ints and longs are 32 bits wide.
  747.      For `-mabi=64', ints are 32 bits, and longs are 64 bits wide.  For
  748.      `-mabi=eabi' and either `-mips1' or `-mips2', ints and longs are
  749.      32 bits wide.  For `-mabi=eabi' and higher ISAs, ints are 32 bits,
  750.      and longs are 64 bits wide.  The width of pointer types is the
  751.      smaller of the width of longs or the width of general purpose
  752.      registers (which in turn depends on the ISA).
  753.  
  754. `-mabi=32'
  755. `-mabi=o64'
  756. `-mabi=n32'
  757. `-mabi=64'
  758. `-mabi=eabi'
  759.      Generate code for the indicated ABI.  The default instruction
  760.      level is `-mips1' for `32', `-mips3' for `n32', and `-mips4'
  761.      otherwise.  Conversely, with `-mips1' or `-mips2', the default ABI
  762.      is `32'; otherwise, the default ABI is `64'.
  763.  
  764. `-mmips-as'
  765.      Generate code for the MIPS assembler, and invoke `mips-tfile' to
  766.      add normal debug information.  This is the default for all
  767.      platforms except for the OSF/1 reference platform, using the
  768.      OSF/rose object format.  If the either of the `-gstabs' or
  769.      `-gstabs+' switches are used, the `mips-tfile' program will
  770.      encapsulate the stabs within MIPS ECOFF.
  771.  
  772. `-mgas'
  773.      Generate code for the GNU assembler.  This is the default on the
  774.      OSF/1 reference platform, using the OSF/rose object format.  Also,
  775.      this is the default if the configure option `--with-gnu-as' is
  776.      used.
  777.  
  778. `-msplit-addresses'
  779. `-mno-split-addresses'
  780.      Generate code to load the high and low parts of address constants
  781.      separately.  This allows `gcc' to optimize away redundant loads of
  782.      the high order bits of addresses.  This optimization requires GNU
  783.      as and GNU ld.  This optimization is enabled by default for some
  784.      embedded targets where GNU as and GNU ld are standard.
  785.  
  786. `-mrnames'
  787. `-mno-rnames'
  788.      The `-mrnames' switch says to output code using the MIPS software
  789.      names for the registers, instead of the hardware names (ie, A0
  790.      instead of $4).  The only known assembler that supports this option
  791.      is the Algorithmics assembler.
  792.  
  793. `-mgpopt'
  794. `-mno-gpopt'
  795.      The `-mgpopt' switch says to write all of the data declarations
  796.      before the instructions in the text section, this allows the MIPS
  797.      assembler to generate one word memory references instead of using
  798.      two words for short global or static data items.  This is on by
  799.      default if optimization is selected.
  800.  
  801. `-mstats'
  802. `-mno-stats'
  803.      For each non-inline function processed, the `-mstats' switch
  804.      causes the compiler to emit one line to the standard error file to
  805.      print statistics about the program (number of registers saved,
  806.      stack size, etc.).
  807.  
  808. `-mmemcpy'
  809. `-mno-memcpy'
  810.      The `-mmemcpy' switch makes all block moves call the appropriate
  811.      string function (`memcpy' or `bcopy') instead of possibly
  812.      generating inline code.
  813.  
  814. `-mmips-tfile'
  815. `-mno-mips-tfile'
  816.      The `-mno-mips-tfile' switch causes the compiler not postprocess
  817.      the object file with the `mips-tfile' program, after the MIPS
  818.      assembler has generated it to add debug support.  If `mips-tfile'
  819.      is not run, then no local variables will be available to the
  820.      debugger.  In addition, `stage2' and `stage3' objects will have
  821.      the temporary file names passed to the assembler embedded in the
  822.      object file, which means the objects will not compare the same.
  823.      The `-mno-mips-tfile' switch should only be used when there are
  824.      bugs in the `mips-tfile' program that prevents compilation.
  825.  
  826. `-msoft-float'
  827.      Generate output containing library calls for floating point.
  828.      *Warning:* the requisite libraries are not part of GCC.  Normally
  829.      the facilities of the machine's usual C compiler are used, but
  830.      this can't be done directly in cross-compilation.  You must make
  831.      your own arrangements to provide suitable library functions for
  832.      cross-compilation.
  833.  
  834. `-mhard-float'
  835.      Generate output containing floating point instructions.  This is
  836.      the default if you use the unmodified sources.
  837.  
  838. `-mabicalls'
  839. `-mno-abicalls'
  840.      Emit (or do not emit) the pseudo operations `.abicalls',
  841.      `.cpload', and `.cprestore' that some System V.4 ports use for
  842.      position independent code.
  843.  
  844. `-mlong-calls'
  845. `-mno-long-calls'
  846.      Do all calls with the `JALR' instruction, which requires loading
  847.      up a function's address into a register before the call.  You need
  848.      to use this switch, if you call outside of the current 512
  849.      megabyte segment to functions that are not through pointers.
  850.  
  851. `-mhalf-pic'
  852. `-mno-half-pic'
  853.      Put pointers to extern references into the data section and load
  854.      them up, rather than put the references in the text section.
  855.  
  856. `-membedded-pic'
  857. `-mno-embedded-pic'
  858.      Generate PIC code suitable for some embedded systems.  All calls
  859.      are made using PC relative address, and all data is addressed
  860.      using the $gp register.  No more than 65536 bytes of global data
  861.      may be used.  This requires GNU as and GNU ld which do most of the
  862.      work.  This currently only works on targets which use ECOFF; it
  863.      does not work with ELF.
  864.  
  865. `-membedded-data'
  866. `-mno-embedded-data'
  867.      Allocate variables to the read-only data section first if
  868.      possible, then next in the small data section if possible,
  869.      otherwise in data.  This gives slightly slower code than the
  870.      default, but reduces the amount of RAM required when executing,
  871.      and thus may be preferred for some embedded systems.
  872.  
  873. `-msingle-float'
  874. `-mdouble-float'
  875.      The `-msingle-float' switch tells gcc to assume that the floating
  876.      point coprocessor only supports single precision operations, as on
  877.      the `r4650' chip.  The `-mdouble-float' switch permits gcc to use
  878.      double precision operations.  This is the default.
  879.  
  880. `-mmad'
  881. `-mno-mad'
  882.      Permit use of the `mad', `madu' and `mul' instructions, as on the
  883.      `r4650' chip.
  884.  
  885. `-m4650'
  886.      Turns on `-msingle-float', `-mmad', and, at least for now,
  887.      `-mcpu=r4650'.
  888.  
  889. `-mips16'
  890. `-mno-mips16'
  891.      Enable 16-bit instructions.
  892.  
  893. `-mentry'
  894.      Use the entry and exit pseudo ops.  This option can only be used
  895.      with `-mips16'.
  896.  
  897. `-EL'
  898.      Compile code for the processor in little endian mode.  The
  899.      requisite libraries are assumed to exist.
  900.  
  901. `-EB'
  902.      Compile code for the processor in big endian mode.  The requisite
  903.      libraries are assumed to exist.
  904.  
  905. `-G NUM'
  906.      Put global and static items less than or equal to NUM bytes into
  907.      the small data or bss sections instead of the normal data or bss
  908.      section.  This allows the assembler to emit one word memory
  909.      reference instructions based on the global pointer (GP or $28),
  910.      instead of the normal two words used.  By default, NUM is 8 when
  911.      the MIPS assembler is used, and 0 when the GNU assembler is used.
  912.      The `-G NUM' switch is also passed to the assembler and linker.
  913.      All modules should be compiled with the same `-G NUM' value.
  914.  
  915. `-nocpp'
  916.      Tell the MIPS assembler to not run its preprocessor over user
  917.      assembler files (with a `.s' suffix) when assembling them.
  918.  
  919.    These options are defined by the macro `TARGET_SWITCHES' in the
  920. machine description.  The default for the options is also defined by
  921. that macro, which enables you to change the defaults.
  922.  
  923. 
  924. File: gcc.info,  Node: i386 Options,  Next: HPPA Options,  Prev: MIPS Options,  Up: Submodel Options
  925.  
  926. Intel 386 Options
  927. -----------------
  928.  
  929.    These `-m' options are defined for the i386 family of computers:
  930.  
  931. `-mcpu=CPU TYPE'
  932.      Assume the defaults for the machine type CPU TYPE when scheduling
  933.      instructions.  The choices for CPU TYPE are:
  934.  
  935.      `i386'        `i486'        `i586'        `i686'        
  936.      `pentium'     `pentiumpro'  `k6'                        
  937.  
  938.      While picking a specific CPU TYPE will schedule things
  939.      appropriately for that particular chip, the compiler will not
  940.      generate any code that does not run on the i386 without the
  941.      `-march=CPU TYPE' option being used.  `i586' is equivalent to
  942.      `pentium' and `i686' is equivalent to `pentiumpro'.  `k6' is the
  943.      AMD chip as opposed to the Intel ones.
  944.  
  945. `-march=CPU TYPE'
  946.      Generate instructions for the machine type CPU TYPE.  The choices
  947.      for CPU TYPE are the same as for `-mcpu'.  Moreover, specifying
  948.      `-march=CPU TYPE' implies `-mcpu=CPU TYPE'.
  949.  
  950. `-m386'
  951. `-m486'
  952. `-mpentium'
  953. `-mpentiumpro'
  954.      Synonyms for -mcpu=i386, -mcpu=i486, -mcpu=pentium, and
  955.      -mcpu=pentiumpro respectively.  These synonyms are deprecated.
  956.  
  957. `-mieee-fp'
  958. `-mno-ieee-fp'
  959.      Control whether or not the compiler uses IEEE floating point
  960.      comparisons.  These handle correctly the case where the result of a
  961.      comparison is unordered.
  962.  
  963. `-msoft-float'
  964.      Generate output containing library calls for floating point.
  965.      *Warning:* the requisite libraries are not part of GCC.  Normally
  966.      the facilities of the machine's usual C compiler are used, but
  967.      this can't be done directly in cross-compilation.  You must make
  968.      your own arrangements to provide suitable library functions for
  969.      cross-compilation.
  970.  
  971.      On machines where a function returns floating point results in the
  972.      80387 register stack, some floating point opcodes may be emitted
  973.      even if `-msoft-float' is used.
  974.  
  975. `-mno-fp-ret-in-387'
  976.      Do not use the FPU registers for return values of functions.
  977.  
  978.      The usual calling convention has functions return values of types
  979.      `float' and `double' in an FPU register, even if there is no FPU.
  980.      The idea is that the operating system should emulate an FPU.
  981.  
  982.      The option `-mno-fp-ret-in-387' causes such values to be returned
  983.      in ordinary CPU registers instead.
  984.  
  985. `-mno-fancy-math-387'
  986.      Some 387 emulators do not support the `sin', `cos' and `sqrt'
  987.      instructions for the 387.  Specify this option to avoid generating
  988.      those instructions. This option is the default on FreeBSD.  As of
  989.      revision 2.6.1, these instructions are not generated unless you
  990.      also use the `-ffast-math' switch.
  991.  
  992. `-malign-double'
  993. `-mno-align-double'
  994.      Control whether GCC aligns `double', `long double', and `long
  995.      long' variables on a two word boundary or a one word boundary.
  996.      Aligning `double' variables on a two word boundary will produce
  997.      code that runs somewhat faster on a `Pentium' at the expense of
  998.      more memory.
  999.  
  1000.      *Warning:* if you use the `-malign-double' switch, structures
  1001.      containing the above types will be aligned differently than the
  1002.      published application binary interface specifications for the 386.
  1003.  
  1004. `-msvr3-shlib'
  1005. `-mno-svr3-shlib'
  1006.      Control whether GCC places uninitialized locals into `bss' or
  1007.      `data'.  `-msvr3-shlib' places these locals into `bss'.  These
  1008.      options are meaningful only on System V Release 3.
  1009.  
  1010. `-mno-wide-multiply'
  1011. `-mwide-multiply'
  1012.      Control whether GCC uses the `mul' and `imul' that produce 64 bit
  1013.      results in `eax:edx' from 32 bit operands to do `long long'
  1014.      multiplies and 32-bit division by constants.
  1015.  
  1016. `-mrtd'
  1017.      Use a different function-calling convention, in which functions
  1018.      that take a fixed number of arguments return with the `ret' NUM
  1019.      instruction, which pops their arguments while returning.  This
  1020.      saves one instruction in the caller since there is no need to pop
  1021.      the arguments there.
  1022.  
  1023.      You can specify that an individual function is called with this
  1024.      calling sequence with the function attribute `stdcall'.  You can
  1025.      also override the `-mrtd' option by using the function attribute
  1026.      `cdecl'.  *Note Function Attributes::.
  1027.  
  1028.      *Warning:* this calling convention is incompatible with the one
  1029.      normally used on Unix, so you cannot use it if you need to call
  1030.      libraries compiled with the Unix compiler.
  1031.  
  1032.      Also, you must provide function prototypes for all functions that
  1033.      take variable numbers of arguments (including `printf'); otherwise
  1034.      incorrect code will be generated for calls to those functions.
  1035.  
  1036.      In addition, seriously incorrect code will result if you call a
  1037.      function with too many arguments.  (Normally, extra arguments are
  1038.      harmlessly ignored.)
  1039.  
  1040. `-mreg-alloc=REGS'
  1041.      Control the default allocation order of integer registers.  The
  1042.      string REGS is a series of letters specifying a register.  The
  1043.      supported letters are: `a' allocate EAX; `b' allocate EBX; `c'
  1044.      allocate ECX; `d' allocate EDX; `S' allocate ESI; `D' allocate
  1045.      EDI; `B' allocate EBP.
  1046.  
  1047. `-mregparm=NUM'
  1048.      Control how many registers are used to pass integer arguments.  By
  1049.      default, no registers are used to pass arguments, and at most 3
  1050.      registers can be used.  You can control this behavior for a
  1051.      specific function by using the function attribute `regparm'.
  1052.      *Note Function Attributes::.
  1053.  
  1054.      *Warning:* if you use this switch, and NUM is nonzero, then you
  1055.      must build all modules with the same value, including any
  1056.      libraries.  This includes the system libraries and startup modules.
  1057.  
  1058. `-malign-loops=NUM'
  1059.      Align loops to a 2 raised to a NUM byte boundary.  If
  1060.      `-malign-loops' is not specified, the default is 2 unless gas 2.8
  1061.      (or later) is being used in which case the default is to align the
  1062.      loop on a 16 byte boundary if it is less than 8 bytes away.
  1063.  
  1064. `-malign-jumps=NUM'
  1065.      Align instructions that are only jumped to to a 2 raised to a NUM
  1066.      byte boundary.  If `-malign-jumps' is not specified, the default is
  1067.      2 if optimizing for a 386, and 4 if optimizing for a 486 unless
  1068.      gas 2.8 (or later) is being used in which case the default is to
  1069.      align the instruction on a 16 byte boundary if it is less than 8
  1070.      bytes away.
  1071.  
  1072. `-malign-functions=NUM'
  1073.      Align the start of functions to a 2 raised to NUM byte boundary.
  1074.      If `-malign-functions' is not specified, the default is 2 if
  1075.      optimizing for a 386, and 4 if optimizing for a 486.
  1076.  
  1077. `-mpreferred-stack-boundary=NUM'
  1078.      Attempt to keep the stack boundary aligned to a 2 raised to NUM
  1079.      byte boundary.  If `-mpreferred-stack-boundary' is not specified,
  1080.      the default is 4 (16 bytes or 128 bits).
  1081.  
  1082.      The stack is required to be aligned on a 4 byte boundary.  On
  1083.      Pentium and PentiumPro, `double' and `long double' values should be
  1084.      aligned to an 8 byte boundary (see `-malign-double') or suffer
  1085.      significant run time performance penalties.  On Pentium III, the
  1086.      Streaming SIMD Extention (SSE) data type `__m128' suffers similar
  1087.      penalties if it is not 16 byte aligned.
  1088.  
  1089.      To ensure proper alignment of this values on the stack, the stack
  1090.      boundary must be as aligned as that required by any value stored
  1091.      on the stack.  Further, every function must be generated such that
  1092.      it keeps the stack aligned.  Thus calling a function compiled with
  1093.      a higher preferred stack boundary from a function compiled with a
  1094.      lower preferred stack boundary will most likely misalign the
  1095.      stack.  It is recommended that libraries that use callbacks always
  1096.      use the default setting.
  1097.  
  1098.      This extra alignment does consume extra stack space.  Code that is
  1099.      sensitive to stack space usage, such as embedded systems and
  1100.      operating system kernels, may want to reduce the preferred
  1101.      alignment to `-mpreferred-stack-boundary=2'.
  1102.  
  1103.